home *** CD-ROM | disk | FTP | other *** search
-
- # Copyright, 1990, Regents of the University of Colorado
- #
- # This is a Bourne shell script that sets up the compilation and
- # linking parameters for a plain vanilla iPSC2 (not the i860 version).
- #
- # There are eight environment variables that are set:
- #
- # Dhostccopt -- the options used by the C compiler in compiling
- # the host file.
- #
- # Dhostlnopt -- the options used by the C compiler in linking the
- # host file. This is empty in the iPSC2 and i860
- # examples.
- #
- # Dhostlibs -- the libraries that the linker needs for the host
- # file. One of these is the host version of the
- # DINO library (that one should be first).
- #
- # Dnodelinkcmd -- The program used to link any node files. On the
- # iPSC1, this is "ld". On both iPSC2 versions, it
- # is "cc".
- #
- # Dnodeccopt -- the options used by the C compiler in compiling
- # any node files.
- #
- # Dhostlnopt -- the options used by the C compiler in linking any
- # node files. This is empty in the iPSC2 and i860
- # examples.
- #
- # Dnodemdls -- Additional ".o" modules that must be linked with
- # any node files. These are placed in front of the
- # ".o" file generated by the node compilation step.
- # (The iPSC1 requires this, it is empty on both
- # iPSC2 versions.)
- #
- # Dnodelibs -- the libraries that the linker needs for any node
- # files. One of these is the node version of the
- # DINO library (that one should be first).
- #
-
- Dhostccopt="-host -DD_MACH=D_CUBE2"
- Dhostlnopt=
- Dhostlibs="${Dhome}/lib/${ARCHTYPE}/D_host2.a \
- -host"
- Dnodelinkcmd=cc
- Dnodeccopt="-node -DD_MACH=D_CUBE2"
- Dnodelnopt=
- Dnodemdls=
- Dnodelibs="${Dhome}/lib/${ARCHTYPE}/D_node2.a \
- -node -lm"
-